home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 1580 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  828 b 

  1. Path: news.bridge.net!news
  2. From: David Byrden <100101.2547@compuserve.com>
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: stack overflow
  5. Date: 11 Jan 1996 19:18:04 GMT
  6. Organization: self-employed
  7. Message-ID: <4d3npc$d9m@news.bridge.net>
  8. References: <1996Jan7.231111.111385@kuhub.cc.ukans.edu>
  9. NNTP-Posting-Host: ppp-mia1-65.bridge.net
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset=us-ascii
  12. Content-Transfer-Encoding: 7bit
  13. X-Mailer: Mozilla 1.1N (Windows; I; 16bit)
  14.  
  15.  
  16. Stack overflow means the program used more stack space than was 
  17. available. A portion of the stack is used each time you enter a 
  18. function, it is where the automatic locals go. It is releaased 
  19. when you return.
  20.  
  21. You may simply need to recompile or relink and specify a larger
  22. stack, or you may have a bug causing a function to call itself
  23. eternally.
  24.  
  25.     David
  26.  
  27.  
  28.